home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / irix_copilot.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  68 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5.  
  6. if(description)
  7. {
  8.  script_id(11369);
  9.  script_bugtraq_id(1106, 4642);
  10.  script_cve_id("CVE-2000-0283", "CVE-2000-1193");
  11.  script_version ("$Revision: 1.5 $");
  12.  
  13.  name["english"] = "irix performance copilot";
  14.  
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. The service 'IRIX performance copilot' is running.
  19.  
  20. This service discloses sensitive informations about
  21. the remote host, and may be used by an attacker to
  22. perform a local denial of service.
  23.  
  24. *** This warning may be a false positive since the presence
  25. *** of the bug was not verified locally.
  26.     
  27. Solution : Disable this service
  28. Risk factor : High";
  29.  
  30.  
  31.  script_description(english:desc["english"]);
  32.  
  33.  summary["english"] = "Checks the presence of IRIX copilot";
  34.  script_summary(english:summary["english"]);
  35.  
  36.  script_category(ACT_GATHER_INFO);
  37.  
  38.  
  39.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison",
  40.         francais:"Ce script est Copyright (C) 2003 Renaud Deraison");
  41.  family["english"] = "Misc."; 
  42.  
  43.  script_family(english:family["english"]);
  44.  script_require_ports(4321);
  45.  exit(0);
  46. }
  47.  
  48. #
  49. # The script code starts here
  50. #
  51.  
  52. include("misc_func.inc");
  53.  
  54. port = 4321;
  55.  
  56. if(get_port_state(port))
  57. {
  58.  soc = open_sock_tcp(port);
  59.  if(!soc)exit(0);
  60.  r = recv(socket:soc, length:20);
  61.  m = raw_string(0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00);
  62.  if(m >< r) {
  63.      register_service(port:port, proto:"copilot");
  64.      security_hole(port);
  65.     }
  66. }
  67.